home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / m / multcxprefsv2.14.lha / MCXP214 / Install_MUI_MCX_Prefs next >
Text File  |  1995-12-18  |  908b  |  55 lines

  1. ; Installation script for MUI_MCX_Prefs
  2.  
  3. (transcript "Installing MUI_MCX_Prefs...")
  4.  
  5.  
  6. (set name
  7.         (askdir
  8.         (prompt "Where shall i install MUI_MultiCX_Prefs?")
  9.         (help @askdir-help)
  10.         (default "SYS:Prefs")
  11.         )
  12. )
  13.  
  14. (copyfiles
  15.     (source "MUI_MCX_Prefs")
  16.     (infos)
  17.     (dest name)
  18. )
  19.  
  20. (set def-lang 0)
  21.  
  22. (set lang
  23. (askoptions
  24.     (prompt "Which languages You wish to install ?")
  25.     (help @askoptions-help)
  26.     (choices "Deutsch")
  27.     (default def-lang)
  28. ))
  29.  
  30. (set n 0)
  31.  
  32. (while (set language (select n "deutsch" "" ) )
  33. (
  34.     (if (IN lang n)
  35.         (copyfiles
  36.             (source (cat "locale/" language ".catalog" ))
  37.             (dest (cat "LOCALE:catalogs/" language ))
  38.             (newname "mcxp.catalog")
  39.         )
  40.     )
  41.     (set n (+ n 1))
  42. ))
  43.  
  44. (copylib
  45.         (prompt "Install WBStart-Handler.")
  46.         (help @copylib-help)
  47.         (source "l/WBStart-Handler")
  48.         (dest "l:")
  49.         (confirm)
  50. )
  51.  
  52. (set @default-dest name)
  53.  
  54. (exit)
  55.